From 4b9fd1bad112427d74b491342f238dc53300b36e Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Fri, 18 Apr 2008 11:08:10 +0100 Subject: [PATCH] ioemu: Fix cross-build of tapdisk-ioemu changeset e1962ac0fb1c breaks cross-builds because it assumes the system strip tool applies to the generated binaries. This assumption isn't made anywhere else in the xen tools build. Signed-off-by: Aron Griffis --- tools/ioemu/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ioemu/Makefile b/tools/ioemu/Makefile index 053d214bd4..861311a8d2 100644 --- a/tools/ioemu/Makefile +++ b/tools/ioemu/Makefile @@ -87,7 +87,7 @@ endif install: all $(if $(BUILD_DOCS),install-doc) mkdir -p "$(DESTDIR)$(bindir)" - $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(prefix)/sbin" + $(INSTALL) -m 755 $(TOOLS) "$(DESTDIR)$(prefix)/sbin" # mkdir -p "$(DESTDIR)$(datadir)" # for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \ # video.x openbios-sparc32 linux_boot.bin pxe-ne2k_pci.bin \ -- 2.30.2